home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fatted Calf
/
The Fatted Calf.iso
/
Applications
/
Graphics
/
GraphicsWrap
/
Source
/
CmdDraw.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-09-16
|
220 b
|
18 lines
#import "CmdDraw.h"
@implementation CmdDraw
- initCmd:(int)x :(int)y
{
[super init];
number1=x; number2=y;
command="draw";
return self;
}
- doCmd
{
[theBitmap cmdDraw:number1 :number2];
return self;
}
@end